home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / ViePratique / ArchiFacile / ArchiFacileSetup.exe / {app} / nw.pak / Unnamed File 001064.txt < prev    next >
Text File  |  2014-10-14  |  5KB  |  193 lines

  1. /*
  2.  * Copyright (C) 2006, 2007, 2008 Apple Inc.  All rights reserved.
  3.  * Copyright (C) 2009 Anthony Ricaud <rik@webkit.org>
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  *
  9.  * 1.  Redistributions of source code must retain the above copyright
  10.  *     notice, this list of conditions and the following disclaimer.
  11.  * 2.  Redistributions in binary form must reproduce the above copyright
  12.  *     notice, this list of conditions and the following disclaimer in the
  13.  *     documentation and/or other materials provided with the distribution.
  14.  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
  15.  *     its contributors may be used to endorse or promote products derived
  16.  *     from this software without specific prior written permission.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
  19.  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  20.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  21.  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
  22.  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  23.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  24.  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  26.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  27.  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  */
  29.  
  30. .sidebar-pane {
  31.     position: relative;
  32. }
  33.  
  34. .sidebar-pane > .body {
  35.     position: relative;
  36.     display: none;
  37. }
  38.  
  39. .sidebar-pane > .body .info {
  40.     text-align: center;
  41.     font-style: italic;
  42.     font-size: 90%;
  43.     padding: 6px;
  44.     color: #888;
  45. }
  46.  
  47. .sidebar-pane > .body .placard + .info {
  48.     border-top: 1px solid rgb(189, 189, 189);
  49.     background-color: rgb(255, 255, 194);
  50. }
  51.  
  52. .sidebar-pane.visible > .body {
  53.     display: block;
  54. }
  55.  
  56. .sidebar-pane .section .properties {
  57.     padding-left: 16px;
  58. }
  59.  
  60. .sidebar-tabbed-pane .tabbed-pane-header {
  61.     border-bottom: 1px solid rgb(202, 202, 202);
  62.     background-color: rgb(236, 236, 236);
  63. }
  64.  
  65. .sidebar-pane-stack > .sidebar-pane.visible:nth-last-of-type(1) {
  66.     border-bottom: 1px solid rgb(189, 189, 189);
  67. }
  68.  
  69. .sidebar-pane-title {
  70.     position: relative;
  71.     background: rgb(240, 240, 240);
  72.     height: 20px;
  73.     padding: 0 5px;
  74.     border-top: 1px solid rgb(189, 189, 189);
  75.     border-bottom: 1px solid rgb(189, 189, 189);
  76.     line-height: 18px;
  77.     background-origin: padding;
  78.     background-clip: padding;
  79.     margin-top: -1px;
  80.     white-space: nowrap;
  81. }
  82.  
  83. .sidebar-pane-title:active {
  84.     background-color: rgb(204, 204, 204);
  85.     border-top: 1px solid rgb(178, 178, 178);
  86.     border-bottom: 1px solid rgb(178, 178, 178);
  87. }
  88.  
  89. .sidebar-pane-title::before {
  90.     background-image: url(Images/statusbarButtonGlyphs.png);
  91.     background-size: 320px 144px;
  92.     opacity: 0.5;
  93.     float: left;
  94.     width: 11px;
  95.     height: 11px;
  96.     margin-right: 2px;
  97.     content: "a";
  98.     color: transparent;
  99.     position: relative;
  100.     top: 3px;
  101. }
  102.  
  103. @media (-webkit-min-device-pixel-ratio: 1.5) {
  104. .sidebar-pane-title::before {
  105.     background-image: url(Images/statusbarButtonGlyphs_2x.png);
  106. }
  107. } /* media */
  108.  
  109. .sidebar-pane-title::before {
  110.     background-position: -4px -96px;
  111. }
  112.  
  113. .sidebar-pane-title.expanded::before {
  114.     background-position: -20px -96px;
  115. }
  116.  
  117. .sidebar-pane-toolbar {
  118.     line-height: 18px;
  119.     left: 0;
  120.     right: 4px;
  121.     top: 0;
  122.     height: 20px;
  123.     position: absolute;
  124.     pointer-events: none;
  125. }
  126.  
  127. .sidebar-pane-toolbar > * {
  128.     pointer-events: auto;
  129. }
  130.  
  131. .sidebar-pane-toolbar > .pane-title-button,
  132. .sidebar-pane-toolbar > label {
  133.     float: right;
  134.     height: 19px;
  135.     background-color: transparent;
  136.     border: none;
  137.     background-repeat: no-repeat;
  138.     margin: 1px 0 0 0;
  139.     padding: 0;
  140.     border-radius: 0;
  141.     -webkit-appearance: none;
  142. }
  143.  
  144. .sidebar-pane-toolbar > .pane-title-button {
  145.     width: 23px;
  146.     color: transparent;
  147. }
  148.  
  149. .sidebar-pane-toolbar > .pane-title-button:hover {
  150.     background-position: -23px 0;
  151. }
  152.  
  153. .sidebar-pane-toolbar > .pane-title-button:active,
  154. .sidebar-pane-toolbar > .pane-title-button.toggled {
  155.     background-position: -46px 0;
  156. }
  157.  
  158. .sidebar-pane-toolbar > .pane-title-button.add {
  159.     background-image: url(Images/paneAddButtons.png);
  160. }
  161.  
  162. .sidebar-pane-toolbar > .pane-title-button.element-state {
  163.     background-image: url(Images/paneElementStateButtons.png);
  164. }
  165.  
  166. .sidebar-pane-toolbar > .pane-title-button.refresh {
  167.     background-image: url(Images/paneRefreshButtons.png);
  168. }
  169.  
  170. .sidebar-pane-toolbar > label.scripts-callstack-async {
  171.     margin: auto;
  172.     margin-right: 5px;
  173.     display: flex;
  174. }
  175.  
  176. .sidebar-pane-subtitle {
  177.     position: absolute;
  178.     right: 0;
  179. }
  180.  
  181. body.platform-windows .sidebar-pane-subtitle {
  182.     padding-top: 1px;
  183. }
  184.  
  185. .section > .header input[type=checkbox] {
  186.     height: 1em;
  187.     width: 1em;
  188.     margin-left: 0;
  189.     margin-top: 0;
  190.     margin-bottom: 0.25em;
  191.     vertical-align: bottom;
  192. }
  193.